home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Minami 83
/
MINAMI83.iso
/
Extra
/
winamp532.exe
/
$R0
/
Winamp Modern
/
scripts
/
mlmenu.m
< prev
next >
Wrap
Text File
|
2005-09-15
|
1KB
|
46 lines
#include <lib/std.mi>
#include "attribs.m"
System.onScriptLoaded() {
initAttribs();
menubar_ml_attrib.onDataChanged();
}
menubar_ml_attrib.onDataChanged() {
Group Player = getscriptgroup().findobject("player.content.ml.dummy.group");
Group MenuBar = getscriptgroup().findobject("wasabi.menubar.ml");
Layout main = getscriptgroup().getParentLayout();
main.beforeRedock();
if (getData() == "1") {
Player.setXmlParam("y","17");
MenuBar.show();
main.snapAdjust(0,0,0,0);
} else {
Player.setXmlParam("y","0");
MenuBar.hide();
main.snapAdjust(0,0,0,17);
}
main.Redock();
}
System.onKeyDown(String k) {
if (menubar_ml_attrib.getData() == "0") return;
Layout l = getScriptGroup().getParentLayout();
if (!l.isActive()) return;
if (k == "alt+f") {
getScriptGroup().findObject("mlFile.menu").sendAction("open", "", 0, 0, 0, 0);
complete;
}
if (k == "alt+i") {
getScriptGroup().findObject("mlView.menu").sendAction("open", "", 0, 0, 0, 0);
complete;
}
if (k == "alt+h") {
getScriptGroup().findObject("mlHelp.menu").sendAction("open", "", 0, 0, 0, 0);
complete;
}
}